home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / src / RCS / mailstats.h,v < prev    next >
Encoding:
Text File  |  1991-06-25  |  2.9 KB  |  128 lines

  1. head    5.4;
  2. branch    5.4.0;
  3. access;
  4. symbols
  5.     RELEASE:5.4.0.3
  6.     BETA:5.4.0.2
  7.     UICSO:5.4.0
  8.     VANILLA:5.4;
  9. locks; strict;
  10. comment    @ * @;
  11.  
  12.  
  13. 5.4
  14. date    90.06.20.08.35.59;    author paul;    state Exp;
  15. branches
  16.     5.4.0.1;
  17. next    ;
  18.  
  19. 5.4.0.1
  20. date    91.04.05.14.52.13;    author paul;    state Exp;
  21. branches;
  22. next    5.4.0.2;
  23.  
  24. 5.4.0.2
  25. date    91.05.18.03.22.50;    author paul;    state Exp;
  26. branches;
  27. next    5.4.0.3;
  28.  
  29. 5.4.0.3
  30. date    91.06.21.12.53.40;    author paul;    state Exp;
  31. branches;
  32. next    ;
  33.  
  34.  
  35. desc
  36. @@
  37.  
  38.  
  39.  
  40. 5.4
  41. log
  42. @5.64 Berkeley release
  43. @
  44. text
  45. @/*
  46.  * Copyright (c) 1983 Eric P. Allman
  47.  * Copyright (c) 1988 Regents of the University of California.
  48.  * All rights reserved.
  49.  *
  50.  * Redistribution and use in source and binary forms are permitted provided
  51.  * that: (1) source distributions retain this entire copyright notice and
  52.  * comment, and (2) distributions including binaries display the following
  53.  * acknowledgement:  ``This product includes software developed by the
  54.  * University of California, Berkeley and its contributors'' in the
  55.  * documentation or other materials provided with the distribution and in
  56.  * all advertising materials mentioning features or use of this software.
  57.  * Neither the name of the University nor the names of its contributors may
  58.  * be used to endorse or promote products derived from this software without
  59.  * specific prior written permission.
  60.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  61.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  62.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  63.  *
  64.  *    @@(#)mailstats.h    5.4 (Berkeley) 6/1/90
  65.  */
  66.  
  67. /*
  68. **  Statistics structure.
  69. */
  70.  
  71. struct statistics
  72. {
  73.     time_t    stat_itime;        /* file initialization time */
  74.     short    stat_size;        /* size of this structure */
  75.     long    stat_nf[MAXMAILERS];    /* # msgs from each mailer */
  76.     long    stat_bf[MAXMAILERS];    /* kbytes from each mailer */
  77.     long    stat_nt[MAXMAILERS];    /* # msgs to each mailer */
  78.     long    stat_bt[MAXMAILERS];    /* kbytes to each mailer */
  79. };
  80. @
  81.  
  82.  
  83. 5.4.0.1
  84. log
  85. @Added RCS ID string.
  86. @
  87. text
  88. @a20 1
  89.  *    @@(#)$Id$
  90. @
  91.  
  92.  
  93. 5.4.0.2
  94. log
  95. @Mailer specific values changed from long to unsigned long.  Part of the
  96. System 5 and general improvement patches contributed by Bruce Lilly
  97. (bruce%balilly@@broadcast.sony.com).
  98. @
  99. text
  100. @d21 1
  101. a23 5
  102. #ifndef    lint
  103. static char mailstats_h_sccs_id[] = "@@(#)mailstats.h    5.4 (Berkeley) 6/1/90    %I% local";
  104. static char mailstats_h_rcsid[] = "@@(#)$Id$";
  105. #endif
  106.  
  107. d30 6
  108. a35 6
  109.     time_t    stat_itime;            /* file initialization time */
  110.     short    stat_size;            /* size of this structure */
  111.     unsigned long    stat_nf[MAXMAILERS];    /* # msgs from each mailer */
  112.     unsigned long    stat_bf[MAXMAILERS];    /* kbytes from each mailer */
  113.     unsigned long    stat_nt[MAXMAILERS];    /* # msgs to each mailer */
  114.     unsigned long    stat_bt[MAXMAILERS];    /* kbytes to each mailer */
  115. @
  116.  
  117.  
  118. 5.4.0.3
  119. log
  120. @Changed sccsid[].
  121. @
  122. text
  123. @d24 2
  124. a25 2
  125. static char mailstats_h_sccs_id[] = "@@(#)mailstats.h    5.4 (Berkeley) 6/1/90";
  126. static char mailstats_h_rcsid[] = "@@(#)$Id: mailstats.h,v 5.4.0.2 1991/05/18 03:22:50 paul Exp paul $";
  127. @
  128.